home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet bezpieczenstwa
/
mini Pentoo LiveCD 2006.1
/
mpentoo-2006.1.iso
/
livecd.squashfs
/
usr
/
include
/
ewl
/
ewl_imenu.h
< prev
next >
Wrap
C/C++ Source or Header
|
2006-01-09
|
1KB
|
54 lines
#ifndef __EWL_IMENU_H__
#define __EWL_IMENU_H__
/**
* @file ewl_imenu.h
* @defgroup Ewl_Imenu Imenu: A Simple Internal Menu
* Defines a menu used internally. The contents on the menu are not drawn
* outside of the Evas.
*
* @{
*/
/**
* @themekey /imenu/file
* @themekey /imenu/group
*/
/**
* A simple internal menu, it is limited to drawing within the current evas.
*/
typedef struct Ewl_Imenu Ewl_Imenu;
/**
* @def EWL_IMENU(menu)
* Typecasts a pointer to an Ewl_Imenu pointer.
*/
#define EWL_IMENU(menu) ((Ewl_Imenu *) menu)
/**
* @struct Ewl_Imenu
* Inherits from the Ewl_Menu_Base and does not extend the structure, but
* provides policy for drawing on the current evas.
*/
struct Ewl_Imenu
{
Ewl_Menu_Base base;
};
Ewl_Widget *ewl_imenu_new(void);
int ewl_imenu_init(Ewl_Imenu *menu);
/*
* Internally used callbacks, override at your own risk.
*/
void ewl_imenu_configure_cb(Ewl_Widget *w, void *ev_data, void *user_data);
void ewl_imenu_expand_cb(Ewl_Widget *w, void *ev_data, void *user_data);
void ewl_imenu_popup_destroy_cb(Ewl_Widget *w, void *ev, void *data);
/**
* @}
*/
#endif /* __EWL_IMENU_H__ */